  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 50;
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .nav-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #a855f7;
        }

        .nav-menu .btn-tickets {
            padding: 0.5rem 1.5rem;
            background: linear-gradient(to right, #7c3aed, #db2777);
            border: none;
            border-radius: 0.5rem;
            color: #fff;
            cursor: pointer;
            font-weight: bold;
            transition: box-shadow 0.3s;
        }

        .nav-menu .btn-tickets:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
        }

        /* Hero Section */
        .hero {
            padding-top: 8rem;
            padding-bottom: 5rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.1) 0%, transparent 50%, rgba(236, 72, 153, 0.1) 100%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 80rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            background: linear-gradient(to right, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #d1d5db;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: fit-content;
        }

        .hero-buttons button {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(to right, #7c3aed, #db2777);
            color: #fff;
        }

        .btn-primary:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }

        .btn-secondary {
            border: 2px solid #a855f7;
            background: transparent;
            color: #fff;
        }

        .btn-secondary:hover {
            background: rgba(168, 85, 247, 0.1);
        }

        .hero-image {
            height: 24rem;
            background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
            border-radius: 0.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .hero-image svg {
            width: 5rem;
            height: 5rem;
            color: #a855f7;
            margin-bottom: 1rem;
        }

        .hero-image p {
            color: #9ca3af;
            margin: 0;
        }

        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
        }

        /* Stats Section */
        .stats {
            padding: 4rem 1.5rem;
            background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .stats-container {
            max-width: 80rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(to right, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #9ca3af;
        }

        /* Events Section */
        .events {
            padding: 5rem 1.5rem;
        }

        .section-container {
            max-width: 80rem;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #9ca3af;
            margin-bottom: 3rem;
            font-size: 1.125rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .event-card {
            background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.4), rgba(236, 72, 153, 0.4));
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            padding: 1.5rem;
            transition: border-color 0.3s;
        }

        .event-card:hover {
            border-color: rgba(168, 85, 247, 0.6);
        }

        .event-header {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .event-date {
            color: #a855f7;
            font-size: 0.875rem;
            font-weight: bold;
        }

        .event-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-top: 0.5rem;
        }

        .event-location {
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .event-badge {
            display: inline-block;
            padding: 0.5rem 0.75rem;
            background: rgba(168, 85, 247, 0.2);
            border-radius: 9999px;
            font-size: 0.875rem;
            color: #d8b4fe;
        }

        /* Pass the Beat Section */
        .education {
            padding: 5rem 1.5rem;
            background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .education-container {
            max-width: 80rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .education-image {
            height: 24rem;
            background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
            border-radius: 0.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .education-image svg {
            width: 5rem;
            height: 5rem;
            color: #a855f7;
            margin-bottom: 1rem;
        }

        .education h2 {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .education p {
            font-size: 1.125rem;
            color: #d1d5db;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-list li {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #d1d5db;
        }

        .feature-list svg {
            color: #a855f7;
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
        }

        @media (max-width: 768px) {
            .education-container {
                grid-template-columns: 1fr;
            }
        }

        /* Blog Section */
        .blog {
            padding: 5rem 1.5rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .blog-card {
            background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.4), rgba(236, 72, 153, 0.4));
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            padding: 1.5rem;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .blog-card:hover {
            border-color: rgba(168, 85, 247, 0.6);
        }

        .blog-date {
            color: #a855f7;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-title {
            color: #a855f7;
        }

        .blog-subtitle {
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .blog-link {
            color: #a855f7;
            font-weight: bold;
            font-size: 0.875rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 1.5rem;
            background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .contact-container {
            max-width: 40rem;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 2.25rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 3rem;
        }

        .success-message {
            display: none;
            padding: 1rem;
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.5);
            border-radius: 0.5rem;
            color: #86efac;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            color: #fff;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        input::placeholder, textarea::placeholder {
            color: #9ca3af;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: rgba(168, 85, 247, 0.6);
        }

        select {
            cursor: pointer;
        }

        select option {
            background: #1f2937;
            color: #fff;
        }

        textarea {
            resize: vertical;
            min-height: 6rem;
        }

        .btn-submit {
            width: 100%;
            padding: 0.75rem;
            background: linear-gradient(to right, #7c3aed, #db2777);
            border: none;
            border-radius: 0.5rem;
            color: #fff;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: box-shadow 0.3s;
        }

        .btn-submit:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
        footer {
            background: #000;
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            padding: 3rem 1.5rem;
        }

        .footer-container {
            max-width: 80rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #a855f7;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: #6b7280;
        }

        /* Utility */
        .section-button {
            padding: 0.75rem 2rem;
            border: 2px solid #a855f7;
            background: transparent;
            border-radius: 0.5rem;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .section-button:hover {
            background: rgba(168, 85, 247, 0.1);
        }
        /* Calendar-specific styles */
        .page-header {
            padding-top: 8rem;
            padding-bottom: 2rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .calendar-controls {
            max-width: 80rem;
            margin: 0 auto 2rem;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .view-toggle {
            display: flex;
            gap: 0.5rem;
            background: rgba(168, 85, 247, 0.1);
            padding: 0.25rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .view-toggle button {
            padding: 0.5rem 1rem;
            background: transparent;
            border: none;
            border-radius: 0.375rem;
            color: #9ca3af;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .view-toggle button.active {
            background: linear-gradient(to right, #7c3aed, #db2777);
            color: #fff;
        }

        .follow-calendar-btn {
            padding: 0.5rem 1.5rem;
            background: linear-gradient(to right, #7c3aed, #db2777);
            border: none;
            border-radius: 0.5rem;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: box-shadow 0.3s;
        }

        .follow-calendar-btn:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }

        /* Calendar View */
        .calendar-view {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem 3rem;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .calendar-header h2 {
            font-size: 2rem;
            font-weight: bold;
        }

        .month-nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .month-nav button {
            padding: 0.5rem 1rem;
            background: rgba(168, 85, 247, 0.2);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            color: #fff;
            cursor: pointer;
            transition: background 0.3s;
        }

        .month-nav button:hover {
            background: rgba(168, 85, 247, 0.3);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
            background: rgba(168, 85, 247, 0.1);
            padding: 1rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .calendar-day-header {
            text-align: center;
            font-weight: bold;
            padding: 1rem 0;
            color: #a855f7;
            font-size: 0.875rem;
        }

        .calendar-day {
            min-height: 100px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 0.375rem;
            padding: 0.5rem;
            cursor: pointer;
            transition: background 0.3s;
            position: relative;
        }

        .calendar-day:hover {
            background: rgba(168, 85, 247, 0.2);
        }

        .calendar-day.other-month {
            opacity: 0.3;
        }

        .calendar-day.has-event {
            border: 2px solid rgba(168, 85, 247, 0.5);
        }

        .day-number {
            font-weight: bold;
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
        }

        .day-event {
            background: linear-gradient(to right, rgba(124, 58, 237, 0.6), rgba(219, 39, 119, 0.6));
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* List View */
        .list-view {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem 3rem;
            display: none;
        }

        .list-view.active {
            display: block;
        }

        .calendar-view.active {
            display: block;
        }

        .calendar-view:not(.active) {
            display: none;
        }

        .event-list-item {
            background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.4), rgba(236, 72, 153, 0.4));
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .event-list-item:hover {
            border-color: rgba(168, 85, 247, 0.6);
            transform: translateY(-2px);
        }

        .event-list-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .event-list-info h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-list-date {
            color: #a855f7;
            font-weight: bold;
            margin-bottom: 0.25rem;
        }

        .event-list-location {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .event-actions {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .btn-add-calendar, .btn-expand {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.875rem;
        }

        .btn-add-calendar {
            background: linear-gradient(to right, #7c3aed, #db2777);
            color: #fff;
        }

        .btn-add-calendar:hover {
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
        }

        .btn-expand {
            background: rgba(168, 85, 247, 0.2);
            color: #fff;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .btn-expand:hover {
            background: rgba(168, 85, 247, 0.3);
        }

        .event-description {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #d1d5db;
            line-height: 1.6;
        }

        .event-description.expanded {
            max-height: 500px;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(168, 85, 247, 0.3);
        }

        .event-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .event-detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #d1d5db;
            font-size: 0.875rem;
        }

        .event-detail-item svg {
            color: #a855f7;
            width: 1.25rem;
            height: 1.25rem;
        }

        @media (max-width: 768px) {
            .calendar-controls {
                flex-direction: column;
            }

            .calendar-grid {
                gap: 0.25rem;
                padding: 0.5rem;
            }

            .calendar-day {
                min-height: 60px;
                font-size: 0.75rem;
            }

            .day-event {
                font-size: 0.65rem;
                padding: 0.125rem 0.25rem;
            }

            .event-list-header {
                flex-direction: column;
            }

            .event-actions {
                width: 100%;
            }

            .btn-add-calendar, .btn-expand {
                flex: 1;
            }
        }    
        </style>